#include <stdio.h>

int main()
{

  int X;

  X = 20;
  printf("The value of X is %d. The address of X is %d " , X, &X );
  
  return 0;

}
